The goto statement
goto
statement
unconditionally
transfers control to the
statement with the
given
label
.
A label is an identifier
followed by a colon:
goto label;
label:
do something;